projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fa5dec
)
; Fix quoting of braces in electric-tests.el.
author
Basil L. Contovounesios
<contovob@tcd.ie>
Tue, 17 Aug 2021 23:54:44 +0000
(
00:54
+0100)
committer
Basil L. Contovounesios
<contovob@tcd.ie>
Tue, 17 Aug 2021 23:54:44 +0000
(
00:54
+0100)
test/lisp/electric-tests.el
patch
|
blob
|
history
diff --git
a/test/lisp/electric-tests.el
b/test/lisp/electric-tests.el
index 4b79992553947850b4558f0b8768b51763e5dda7..c5124aca5eeccf195df5af9139fc1a06dd93d893 100644
(file)
--- a/
test/lisp/electric-tests.el
+++ b/
test/lisp/electric-tests.el
@@
-872,7
+872,7
@@
baz\"\""
(defun electric-layout-for-c-style-du-jour (inserted)
"A function to use in `electric-layout-rules'"
- (when (memq inserted '(?
{ ?
}))
+ (when (memq inserted '(?
\{ ?\
}))
(save-excursion
(backward-char 2) (c-point-syntax) (forward-char) ; silly, but needed
(c-brace-newlines (c-point-syntax)))))